home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DJGPP
/
BNU22SR2.ZIP
/
src
/
binutils.2
/
libibert
/
vprintf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-05-30
|
160b
|
11 lines
#include <stdio.h>
#include <varargs.h>
#undef vprintf
int
vprintf (format, ap)
char *format;
va_list ap;
{
return vfprintf (stdout, format, ap);
}